home *** CD-ROM | disk | FTP | other *** search
/ HPAVC / HPAVC CD-ROM.iso / pc / BKISSSRC.ZIP / IRIS / MAKEFILE < prev    next >
Encoding:
Text File  |  1994-02-11  |  1.4 KB  |  53 lines

  1. # makefile MAKE V2.0 or higher
  2. .autodepend
  3.  
  4. # to enable debugging information, set "DEBUG" to "yes"
  5. DEBUG = no
  6.  
  7. # define all object files that make up the executable
  8. OBJS = iris.obj palette.obj datatabl.obj
  9.  
  10. ##############################################################################
  11.  
  12. !if ($(DEBUG) == yes)
  13. TLINKDEBUG = /v
  14. !endif
  15.  
  16. ##############################################################################
  17.  
  18. .asm.obj:
  19.     tasm /ml /m /zi $<
  20.  
  21. ##############################################################################
  22.  
  23. iris.exe:       $(OBJS) makefile
  24.         tlink /x $(TLINKDEBUG) @&&|
  25. $(OBJS)
  26. iris.exe
  27. iris.map
  28.  
  29. |
  30.         !if ($(DEBUG) != yes)
  31.         pklite iris
  32.         !endif
  33.  
  34. ##############################################################################
  35.  
  36. datatabl.bin:   datatabl.bas
  37.                 qb /run datatabl
  38.  
  39. ##############################################################################
  40. # there appears to be a bug in 2OBJ with it trying to dump files of 65536
  41. # bytes in length.  this is just a work around.  besides, who'll miss the
  42. # those 32 bytes? :)
  43.  
  44. datatabl.obj:   datatabl.bin
  45.                 2obj b /t32 datatabl.bin DataTableSeg:DataTable
  46.  
  47. ##############################################################################
  48.  
  49. palette.obj:    palette.pal
  50.                 2obj b palette.pal MyData:PaletteData
  51.  
  52. ##############################################################################
  53.